home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / am-addressingOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-15  |  6.6 KB  |  137 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.    -
  6.    - The contents of this file are subject to the Mozilla Public License Version
  7.    - 1.1 (the "License"); you may not use this file except in compliance with
  8.    - the License. You may obtain a copy of the License at
  9.    - http://www.mozilla.org/MPL/
  10.    -
  11.    - Software distributed under the License is distributed on an "AS IS" basis,
  12.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.    - for the specific language governing rights and limitations under the
  14.    - License.
  15.    -
  16.    - The Original Code is Account Manager Addressing Settings Overlay.
  17.    -
  18.    - The Initial Developer of the Original Code is
  19.    - The Mozilla Foundation.
  20.    - Portions created by the Initial Developer are Copyright (C) 2005
  21.    - the Initial Developer. All Rights Reserved.
  22.    -
  23.    - Contributor(s):
  24.    -
  25.    - Alternatively, the contents of this file may be used under the terms of
  26.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  27.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.    - in which case the provisions of the GPL or the LGPL are applicable instead
  29.    - of those above. If you wish to allow use of your version of this file only
  30.    - under the terms of either the GPL or the LGPL, and not to allow others to
  31.    - use your version of this file under the terms of the MPL, indicate your
  32.    - decision by deleting the provisions above and replace them with the notice
  33.    - and other provisions required by the LGPL or the GPL. If you do not delete
  34.    - the provisions above, a recipient may use your version of this file under
  35.    - the terms of any one of the MPL, the GPL or the LGPL.
  36.    -
  37.    - ***** END LICENSE BLOCK ***** -->
  38.    
  39. <?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?>
  40.  
  41. <!DOCTYPE overlay SYSTEM "chrome://messenger/locale/am-addressing.dtd">
  42.  
  43. <overlay xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  44.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">                                                       
  45.  
  46.   <script type="application/x-javascript" src="chrome://messenger/content/addressbook/pref-directory.js"/>
  47.   <script type="application/x-javascript" src="chrome://messenger/content/am-addressing.js"/>
  48.  
  49.   <vbox flex="1" id="compositionAndAddressing">
  50.     <stringbundle id="bundle_addressBook" src="chrome://messenger/locale/addressbook/addressBook.properties"/>
  51.     <label hidden="true" wsm_persist="true" id="identity.directoryServer"
  52.           pref="true" preftype="string" prefattribute="value"
  53.           prefstring="mail.identity.%identitykey%.directoryServer"/>
  54.     <label hidden="true" wsm_persist="true" id="identity.overrideGlobalPref"
  55.           pref="true" preftype="bool" prefattribute="value"
  56.           prefstring="mail.identity.%identitykey%.overrideGlobal_Pref"/>
  57.     <label hidden="true" wsm_persist="true" id="overrideGlobalPref" value=""/>
  58.     <label hidden="true" wsm_persist="true" id="directoryServer" value=""/>
  59.     <checkbox hidden="true" wsm_persist="true" id="identity.attachSignature"
  60.           pref="true" preftype="bool" prefattribute="value"
  61.           prefstring="mail.identity.%identitykey%.attach_signature"/>
  62.   
  63.     <separator class="thin"/>
  64.     <groupbox>
  65.       <caption label="&compositionGroupTitle.label;"/>
  66.       <hbox align="center">
  67.         <checkbox wsm_persist="true" id="identity.composeHtml" label="&useHtml.label;"
  68.                   accesskey="&useHtml.accesskey;"
  69.                   prefattribute="value"
  70.                   prefstring="mail.identity.%identitykey%.compose_html"/>
  71.       </hbox>
  72.  
  73.       <separator class="thin"/>
  74.  
  75.       <hbox align="center">
  76.         <checkbox wsm_persist="true" id="identity.autoQuote" label="&autoQuote.label;"
  77.                   oncommand="quoteEnabling();" accesskey="&autoQuote.accesskey;"
  78.                   pref="true" preftype="bool" prefattribute="value"
  79.                   prefstring="mail.identity.%identitykey%.auto_quote"/>
  80.       </hbox>
  81.       <hbox class="indent" align="center" id="thenBox">
  82.         <label value="&then.label;" accesskey="&then.accesskey;" control="identity.replyOnTop"/>
  83.         <menulist wsm_persist="true" id="identity.replyOnTop" oncommand="quoteEnabling();"
  84.                   pref="true" preftype="int" prefattribute="value"
  85.                   prefstring="mail.identity.%identitykey%.reply_on_top">
  86.           <menupopup>
  87.             <menuitem value="1" label="&aboveQuote.label;"/>
  88.             <menuitem value="0" label="&belowQuote.label;"/>
  89.             <menuitem value="2" label="&selectAndQuote.label;"/>
  90.           </menupopup>
  91.         </menulist>        
  92.       </hbox>
  93.       <hbox class="indent" align="center" id="placeBox">
  94.         <label value="&place.label;" accesskey="&place.accesskey;" control="identity.sig_bottom"/>
  95.         <menulist wsm_persist="true" id="identity.sig_bottom" genericattr="true"
  96.                   pref="true" preftype="bool" prefattribute="value">
  97.           <menupopup>
  98.             <menuitem value="true" label="&belowText.label;"/>
  99.             <menuitem value="false" label="&aboveText.label;"/>
  100.           </menupopup>
  101.         </menulist>
  102.       </hbox>
  103.     </groupbox>
  104.  
  105.     <separator class="thin"/>
  106.  
  107.     <groupbox>
  108.       <caption label="&addressingGroupTitle.label;"/>
  109.       <hbox align="center">
  110.         <checkbox wsm_persist="true" id="identity.autocompleteToMyDomain"
  111.                   label="&autocompleteToMyDomain.label;"
  112.                   accesskey="&autocompleteToMyDomain.accesskey;"
  113.                   prefattribute="value"
  114.                   prefstring="mail.identity.%identitykey%.autocompleteToMyDomain"/>
  115.       </hbox>
  116.  
  117.       <separator class="thin"/>
  118.  
  119.       <description>&addressingText.label;</description>
  120.       <radiogroup class="indent" id="ldapAutocomplete" wsm_persist="true" oncommand="enabling();">
  121.         <observes element="identity.overrideGlobalPref" attribute="disabled"/>
  122.         <radio id="useGlobalPref" value="0" label="&useGlobal.label;"
  123.                accesskey="&useGlobal.accesskey;"/>
  124.         <radio id="directories" value="1" label="&directories.label;"
  125.                accesskey="&directories.accesskey;"/>
  126.         <hbox class="indent">
  127.           <menulist id="directoriesList" wsm_persist="true" style="min-width: 16em;">
  128.             <menupopup onpopupshowing="createDirectoriesList(false);" id="directoriesListPopup"/>
  129.           </menulist>
  130.           <button id="editButton" label="&editDirectories.label;"
  131.                   accesskey="&editDirectories.accesskey;" oncommand="onEditDirectories();"/>
  132.         </hbox>
  133.       </radiogroup>      
  134.     </groupbox>
  135.   </vbox>
  136. </overlay>
  137.